These scripts allow you to set the TTL (Time to Live) value on your Windows machine. TTL is an important network parameter that affects how long data packets are valid before being discarded.
Both scripts follow a similar process:
set_ttl.bat.set_ttl.ps1..\set_ttl.ps1.Here's a visual representation of how these scripts work:
graph LR
A[Start] --> B[Run Script]
B --> C{Choose TTL}
C -->|64| D[Set TTL to 64]
C -->|128| E[Set TTL to 128]
C -->|Custom| F[Enter Custom TTL]
F --> G[Set Custom TTL]
G --> H[Finish]
D --> H
E --> H
H --> I[End]